using System;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace RuntimeGizmos
{
    public struct IntersectPoints
    {
        public Vector3 first;
        public Vector3 second;
        public IntersectPoints(Vector3 first, Vector3 second)
        {
            throw new NotImplementedException();
        }
    }
}